home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Windows Selection
/
Windows Selection 1.iso
/
Programmer's Utilities
/
Freeman Installer
/
saint.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-04-10
|
550 b
|
20 lines
#define __SAINT_H
class saint /* static int array */
{
int *buf; /* buffer */
public:
saint();
~saint();
int *getbuf() { return buf; }
int &operator[](int idx) { return buf[idx]; }
int *operator+(int offset) { return buf+offset; }
int *takbuf();
int setbufsize(int newbufsize);
void setempty();
};